home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / rbcomm31.zip / DDJ.MAC < prev    next >
Text File  |  1990-04-28  |  486b  |  26 lines

  1. ; RBcomm macro file for logging on to the Dr. Dobb's Journal BBS
  2. ;  by Ralf Brown
  3. ;
  4. Auto    MULTI
  5.     PAUSE 4
  6.     TEXT  "\r"
  7.     WAITFOR 12 "login:"
  8.     TEXT    "listings\r"
  9.     WAITFOR 12 "name"
  10.     TEXT    "<yourname>\r"
  11.     WAITFOR 5 "rd:"
  12.     PASSWORD
  13.     TEXT    "\r"
  14.     WAITFOR 12 "help"
  15.     TEXT    "1\r"
  16.      END
  17.  
  18. ; log the entire session to disk
  19. OnLoad    OPEN_LOG "d:/tmp/ddj.log"
  20.  
  21. ; but turn off the logging when we hang up
  22. Cleanup CLOSE_LOG
  23.  
  24. ; include the standard key bindings
  25. #include "rbcomm"
  26.